Advertisement
wingman007

2018_DotNetProgrammingPartTime_Customer.cs

Sep 25th, 2018
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. ?using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6.  
  7. namespace WebApplication1bDeletMe
  8. {
  9.     public class Customer
  10.     {
  11.         public int Id { get; set; }
  12.  
  13.         [Required, StringLength(30)]
  14.         public string Name { get; set; }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement