2024-07-11 05:57:53 +00:00
|
|
|
|
namespace Neighbourhood.omg.lol.Models {
|
2024-05-31 13:16:09 +00:00
|
|
|
|
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; }
|
2024-05-31 13:16:09 +00:00
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|