Extract response exceptions
[smsapi-csharp.git] / smsapi / Api / Response / CheckNumber.cs
blobc9765cd28b387eb11500203eb9204bb9e0a8d5e8
1 using System.Collections.Generic;
2 using System.Runtime.Serialization;
4 namespace SMSApi.Api.Response
6 [DataContract]
7 public class CheckNumber : Countable
9 [DataMember(Name = "list", IsRequired = true)]
10 private List<NumberStatus> list;
12 protected CheckNumber()
13 { }
15 public List<NumberStatus> List
17 get
19 if (list == null)
21 list = new List<NumberStatus>();
24 return list;
27 set
28 { }