mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
11 lines
229 B
C#
11 lines
229 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace Marechai.ViewModels
|
||
|
|
{
|
||
|
|
public class CompanyViewModel
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public Guid? LastLogo { get; set; }
|
||
|
|
public string Name { get; set; }
|
||
|
|
}
|
||
|
|
}
|