roadie/Roadie.Api.Library/Data/BeginAndEndNamedEntityBase.cs

14 lines
341 B
C#
Raw Permalink Normal View History

2018-11-02 21:04:49 +00:00
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Data
{
public abstract class BeginAndEndNamedEntityBase : NamedEntityBase
{
2019-11-28 17:38:26 +00:00
[Column("beginDate")]
public DateTime? BeginDate { get; set; }
2018-11-02 21:04:49 +00:00
2019-11-28 17:38:26 +00:00
[Column("endDate")]
public DateTime? EndDate { get; set; }
2018-11-02 21:04:49 +00:00
}
2018-11-02 21:11:11 +00:00
}