Files
marechai/Marechai.Database/Models/PeopleByCompany.cs

17 lines
517 B
C#
Raw Normal View History

2019-06-05 15:32:17 +01:00
using System;
2020-02-10 02:10:18 +00:00
namespace Marechai.Database.Models
2019-06-05 15:32:17 +01:00
{
public class PeopleByCompany : BaseModel<long>
{
public int PersonId { get; set; }
public int CompanyId { get; set; }
public string Position { get; set; }
public DateTime? Start { get; set; }
public DateTime? End { get; set; }
public bool Ongoing { get; set; }
public virtual Person Person { get; set; }
public virtual Company Company { get; set; }
}
}