Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models/AlgorithmClass.cs @ 5186

Last change on this file since 5186 was 5186, checked in by wtollsch, 13 years ago

#1198 MVC2 plugin template added for HL OKBWebClient

File size: 737 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.ComponentModel.DataAnnotations;
6using System.Web.Mvc;
7using System.ComponentModel;
8
9namespace HLWebOKBAdminPlugin.Models {
10
11    [MetadataType(typeof(AlgorithmClassMetaData))]
12    public partial class AlgorithmClass {
13
14        [Bind(Exclude = "Id")]
15        public class AlgorithmClassMetaData {
16            [ScaffoldColumn(false)]
17            public object Id { get; set; }
18
19            [DisplayName("Description")]
20            public object Description { get; set; }
21
22            [Required(ErrorMessage = "An AlgorithmClass Name is required")]
23            public object Name { get; set; }
24
25        }
26
27    }
28}
Note: See TracBrowser for help on using the repository browser.