mirror of
https://github.com/sphildreth/roadie
synced 2025-02-16 21:18:26 +00:00
12 lines
No EOL
325 B
C#
12 lines
No EOL
325 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
public abstract class BeginAndEndNamedEntityBase : NamedEntityBase
|
|
{
|
|
[Column("beginDate")] public DateTime? BeginDate { get; set; }
|
|
|
|
[Column("endDate")] public DateTime? EndDate { get; set; }
|
|
}
|
|
} |