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

12 lines
308 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 CompanyLogo
2018-08-05 23:11:15 +01:00
{
public int Id { get; set; }
public int CompanyId { get; set; }
public int? Year { get; set; }
2018-08-06 21:07:07 +01:00
public string Guid { get; set; }
2018-08-05 23:11:15 +01:00
2018-08-06 21:27:14 +01:00
public Company Company { get; set; }
2018-08-05 23:11:15 +01:00
}
}