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

17 lines
513 B
C#
Raw Normal View History

2019-06-05 15:32:17 +01:00
using System;
namespace Cicm.Database.Models
{
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; }
}
}