Skip to content

Instantly share code, notes, and snippets.

@ShariqT
Created November 2, 2021 21:56
Show Gist options
  • Save ShariqT/5262101d63ac6792507bee676baf5e7a to your computer and use it in GitHub Desktop.
Save ShariqT/5262101d63ac6792507bee676baf5e7a to your computer and use it in GitHub Desktop.
AddressResult Model
public class LobAddressResult
{
public string id { get; set; }
public string description { get; set; }
[Required, StringLength(40, MinimumLength = 3)]
public string name { get; set; }
public string company { get; set; }
public string phone { get; set; }
public string email { get; set; }
[Required, StringLength(64)]
public string address_line1 { get; set; }
[Required, StringLength(200)]
public string address_city { get; set; }
[Required]
public string address_state { get; set; }
[Required]
public string address_zip { get; set; }
public string address_country { get; set; }
public string date_created { get; set; }
public string date_modified { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment