You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-PmAPI/WF_EF_Api/DTO/QuoteDTO.cs

23 lines
650 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTO
{
public class QuoteDTO
{
public int Id { get; set; }
public string Content { get; set; }
public string Character { get; set; }
public string ImagePath { get; set; }
public string TitleSource { get; set; }
public int DateSource { get; set; }
public int Like { get; set; }
public TypeLangageDTO Langage { get; set; }
public TypeSrcEnumDTO Type { get; set; }
public Boolean IsValide { get; set; }
}
}