hanyadikhetvan-dotnethf/HanyadikHetVan/DTO/FunFactDTO.cs
Torma Kristóf 10c1bb008f
All checks were successful
continuous-integration/drone/push Build is passing
final
2021-05-20 01:36:54 +02:00

12 lines
201 B
C#

namespace HanyadikHetVan.DTO
{
public class FunFactDTO
{
public int Id { get; set; }
public double FunFactor { get; set; }
public string Fact { get; set; }
}
}