mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
10 lines
134 B
C#
10 lines
134 B
C#
|
|
namespace LocalModels;
|
|
|
|
public interface IModuleItem
|
|
{
|
|
public string Name { get; init; }
|
|
public DateTime DueAt { get; init; }
|
|
|
|
}
|