10 lines
214 B
C#
10 lines
214 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.FileTitle;
|
|
|
|
public class FileTitleViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Type { get; set; }
|
|
} |