mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
310 B
C#
12 lines
310 B
C#
using System.ComponentModel;
|
|
|
|
namespace Marechai.ViewModels
|
|
{
|
|
public class DocumentCompanyViewModel : BaseViewModel<int>
|
|
{
|
|
public string Name { get; set; }
|
|
[DisplayName("Linked company")]
|
|
public string Company { get; set; }
|
|
public int? CompanyId { get; set; }
|
|
}
|
|
} |