hanyadikhetvan-dotnethf/HanyadikHetVan/Data/Entities/FunFact.cs
Torma Kristóf 634488c2d8
All checks were successful
continuous-integration/drone/push Build is passing
addfunfacts
2021-05-19 17:56:56 +02:00

17 lines
328 B
C#

namespace HanyadikHetVan.Data.Entities
{
public class FunFact
{
public int Id { get; set; }
public string Fact { get; set; }
public double FunFactor { get; set; }
public int WeeklyTimeSpanId { get; set; }
public virtual WeeklyTimeSpan WeeklyTimeSpan { get; set; }
}
}