Subversion Repository Public Repository

AmsLaserficheDataProvider

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace AmsLaserficheDataProvider.Models
{
    public class EntryModel
    {
        public int EntryId { get; set; }

        public EntryModel(int entryId)
        {
            EntryId = entryId;
        }
    }
}

Commits for AmsLaserficheDataProvider/AmsLaserficheDataProvider/Models/EntryModel.cs

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Thu 09 Aug, 2018 12:33:02 +0000