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

14 lines
323 B
C#
Raw Normal View History

2018-08-06 23:33:39 +01:00
using System;
namespace Cicm.Database.Models
2018-08-05 23:11:15 +01:00
{
2018-08-06 21:27:14 +01:00
public class CompanyLogo
2018-08-05 23:11:15 +01:00
{
2018-08-06 23:33:39 +01:00
public int Id { get; set; }
public int CompanyId { get; set; }
public int? Year { get; set; }
public Guid Guid { get; set; }
2018-08-05 23:11:15 +01:00
2018-08-06 23:33:39 +01:00
public virtual Company Company { get; set; }
2018-08-05 23:11:15 +01:00
}
}