Files
Gainsight/TodoList/AccountItem.cs

6 lines
196 B
C#
Raw Normal View History

2022-06-14 17:10:04 -04:00
public class Account
2022-06-13 08:50:32 -04:00
{
public string? AccountName { get; set; }
public Dictionary<string, string> tasks = new Dictionary<string, string>();
2022-06-14 17:10:04 -04:00
public string? LastContacted { get; set; }
2022-06-13 08:50:32 -04:00
}