Skip to content

Instantly share code, notes, and snippets.

View techhowdy's full-sized avatar

Tech Howdy techhowdy

  • Techhowdy Solutions
View GitHub Profile
@techhowdy
techhowdy / Countries.json
Created May 11, 2020 00:29
List of Countries with Flags and States JSON- By Techhowdy
[
{
"id":157,
"countryId":1,
"twoDigitCode":"AF",
"name":"Afghanistan",
"phoneCode":"93",
"flag":"\uD83C\uDDE6\uD83C\uDDEB",
"states":"Badakhshan|Badghis|Baghlan|Balkh|Bamian|Daykondi|Farah|Faryab|Ghazni|Ghowr|Helmand|Herat|Jowzjan|Kabul|Kandahar|Kapisa|Khost|Konar|Kondoz|Laghman|Lowgar|Nangarhar|Nimruz|Nurestan|Oruzgan|Paktia|Paktika|Panjshir|Parvan|Samangan|Sar-e Pol|Takhar|Vardak|Zabol",
"statesList":null
@techhowdy
techhowdy / CountryModel.cs
Last active May 11, 2020 00:20
List of Countries with Flags and States C# - By Techhowdy
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CountryService {
public class CountryModel
{
[Key]
public int Id { get; set; }
public int CountryId { get; set; }