forked from ddrilling/AsbCloudServer
4c68045398
Add entity DrillingProgram parts
17 lines
532 B
C#
17 lines
532 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class DrillingProgramPartDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public int IdFileCategory { get; set; }
|
|
public IEnumerable<UserDto> Publishers { get; set; }
|
|
public IEnumerable<UserDto> Approvers { get; set; }
|
|
public bool PermissionToApprove { get; set; }
|
|
public bool PermissionToUpload { get; set; }
|
|
public FileInfoDto File { get; set; }
|
|
}
|
|
}
|