5 lines
213 B
C#
5 lines
213 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class AddressResponseList : List<AddressResponseData>, IOmgLolResponseList<AddressResponseData> {
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
}
|