Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 25, 2019 13:46
Show Gist options
  • Save evgomes/6c95a16fc9a9d669b6686db730ddf02c to your computer and use it in GitHub Desktop.
Save evgomes/6c95a16fc9a9d669b6686db730ddf02c to your computer and use it in GitHub Desktop.
EUnitOfMeasurement enum of Supermarket.API
using System.ComponentModel;
namespace Supermarket.API.Domain.Models
{
public enum EUnitOfMeasurement : byte
{
[Description("UN")]
Unity = 1,
[Description("MG")]
Milligram = 2,
[Description("G")]
Gram = 3,
[Description("KG")]
Kilogram = 4,
[Description("L")]
Liter = 5
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment