Neighbourhood.omg.lol/Models/API/AddressResponseData.cs

29 lines
921 B
C#
Raw Permalink Normal View History

2024-07-11 05:57:53 +00:00
namespace Neighbourhood.omg.lol.Models {
public class AddressResponseData : IOmgLolResponseData {
2024-07-02 00:29:50 +00:00
public string Address { get; set; } = string.Empty;
public string Message { get; set; } = string.Empty;
public RegistrationData? Registration { get; set; }
public ExpirationData? Expiration { get; set; }
2024-06-05 12:41:08 +00:00
public PreferenceData? Preferences { get; set; }
public class RegistrationData : TimeData {
public string? Message { get; set; }
}
public class ExpirationData : TimeData {
public bool Expired { get; set; }
public bool WillExpire { get; set; }
}
public class PreferenceData {
public string? IncludeInDirectory { get; set; }
public string? ShowOnDashboard { get; set; }
public StatuslogPreferenceData? Statuslog { get; set; }
}
public class StatuslogPreferenceData {
public bool? MastodonPosting { get; set; }
}
}
}