ConTime/model/TaskItem.cs

15 lines
425 B
C#
Raw Permalink Normal View History

2025-10-12 21:47:06 +00:00
namespace Contime.model {
public class TaskItem {
public long Id { get; }
public string Name { get; }
public string Status { get; }
public TimeSpan ElapsedTime { get; }
public TaskItem(long id, string name, string status, TimeSpan elapsedTime) {
Id = id;
Name = name;
Status = status;
ElapsedTime = elapsedTime;
}
}
}