Optimize view of companies.

This commit is contained in:
2019-05-20 01:44:22 +01:00
parent 43e472732f
commit 11933dbc3d
6 changed files with 78 additions and 44 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace cicm_web.Models
{
public class CompanyViewModel
{
public int Id;
public Guid? LastLogo;
public string Name;
}
}