Created
January 30, 2019 12:25
-
-
Save evgomes/e57e0bab6ac3c7bc87a2bbf648a76728 to your computer and use it in GitHub Desktop.
SaveCategoryResource, from Supermarket API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.ComponentModel.DataAnnotations; | |
namespace Supermarket.API.Resources | |
{ | |
public class SaveCategoryResource | |
{ | |
[Required] | |
[MaxLength(30)] | |
public string Name { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment