16 lines
298 B
C#
16 lines
298 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace key4intranet.Api.Docs {
|
|||
|
public enum Departement {
|
|||
|
OPERATIONNEL,
|
|||
|
COMMERCIAL,
|
|||
|
ADMISTRATIF,
|
|||
|
DEV,
|
|||
|
DIRECTION,
|
|||
|
ERR //only for errors
|
|||
|
}
|
|||
|
}
|