8 lines
324 B
C#
8 lines
324 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class StatusBioResponseData : IOmgLolResponseData {
|
|
public string Message { get; set; } = string.Empty;
|
|
public string Bio { get; set; } = string.Empty;
|
|
public string Css { get; set; } = string.Empty;
|
|
public string Head { get; set; } = string.Empty;
|
|
}
|
|
}
|