Line of C#

Java code posted by Sayles
created at 19 May 11:57, updated at 29 Jun 12:17

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace BaremageMobile.DAL.Models
{
    public class EntiteBV
    {
        private int _id_EntiteBV;
        public int Id_EntiteBV
        {
            get { return _id_EntiteBV; }
            set { _id_EntiteBV = value; }
        }
        private string _libelle_EntiteBV;

        public string Libelle_EntiteBV
        {
            get { return _libelle_EntiteBV; }
            set { _libelle_EntiteBV = value; }
        }
    }
}
458 Bytes in 2 ms with coderay