Skip to content

Instantly share code, notes, and snippets.

@justlev
Created September 30, 2018 21:21
Show Gist options
  • Save justlev/41b510051ade402238c6e3d8de46b26f to your computer and use it in GitHub Desktop.
Save justlev/41b510051ade402238c6e3d8de46b26f to your computer and use it in GitHub Desktop.
public enum MerchantRaces
{
Khajit,
Dragonborn,
Dogjit,
CheeseEat
}
public interface IMerchant {
string Id { get; }
string Name { get; }
MerchantRaces Race { get; }
IInventory Inventory { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment