You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
578 B
19 lines
578 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace logiqueDeLApp
|
|
{
|
|
public class Langage : Item
|
|
{
|
|
public string Nom { get; private set; }
|
|
public DateTime DateDuLangage { get; private set; }
|
|
public IList<string> LesAuteurs { get; private set; }
|
|
public string Doucumentation { get; private set; }
|
|
public string chemainDuLogo { get; private set; }
|
|
public IList<string> logicielsConus { get; private set; }
|
|
public string utilitéDuLangage { get; private set; }
|
|
|
|
}
|
|
}
|