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

11 lines
277 B
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
namespace Cicm.Database.Models
{
2018-08-06 21:27:14 +01:00
public class CompanyDescription
2018-08-05 23:11:15 +01:00
{
public int Id { get; set; }
public int CompanyId { get; set; }
public string Text { get; set; }
2018-08-06 23:33:39 +01:00
public virtual Company Company { get; set; }
2018-08-05 23:11:15 +01:00
}
}