Files
Gainsight/TodoList/AccountItem.cs
2022-06-15 21:30:14 -04:00

6 lines
196 B
C#

public class Account
{
public string? AccountName { get; set; }
public Dictionary<string, string> tasks = new Dictionary<string, string>();
public string? LastContacted { get; set; }
}