6 lines
207 B
C#
6 lines
207 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class SomePicsResponseData : IOmgLolResponseData {
|
|
public string Message { get; set; } = string.Empty;
|
|
public List<Pic>? Pics { get; set; }
|
|
}
|
|
}
|