14 lines
226 B
C#
14 lines
226 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Identity.Dto;
|
|||
|
|
|
|||
|
|
public class AssignedWorkHourViewModel
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
public bool IsAssigned { get; set; }
|
|||
|
|
}
|
|||
|
|
|