2022-06-14 17:10:04 -04:00
|
|
|
public class Account
|
2022-06-13 08:50:32 -04:00
|
|
|
{
|
|
|
|
|
public string? AccountName { get; set; }
|
2022-06-15 21:30:14 -04:00
|
|
|
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
|
|
|
}
|