This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ModificationSegmentationEventData | |
| { | |
| int SegPk { get; set; } | |
| string SegLibelle { get; set; } | |
| string SegType { get; set; } | |
| System.Int32? SegParentSegPk { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CreationSegmentationEventData | |
| { | |
| int SegPk { get; set; } | |
| string SegLibelle { get; set; } | |
| string SegType { get; set; } | |
| System.Int32? SegParentSegPk { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SuppressionSegmentationEventData | |
| { | |
| int SegPk { get; set; } | |
| string SegLibelle { get; set; } | |
| string SegType { get; set; } | |
| System.Int32? SegParentSegPk { get; set; } | |
| System.Int32? SegPkRemplacement { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ArchivageLotEventData | |
| { | |
| Guid PmlGuid { get; set; } | |
| string PmlRef { get; set; } | |
| string PmlLibelle { get; set; } | |
| Guid PmlGplGuid { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ModificationLotEventData | |
| { | |
| Guid PmlGuid { get; set; } | |
| string PmlRef { get; set; } | |
| string PmlLibelle { get; set; } | |
| Guid PmlGplGuid { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CreationLotEventData | |
| { | |
| Guid PmlGuid { get; set; } | |
| string PmlRef { get; set; } | |
| string PmlLibelle { get; set; } | |
| Guid PmlGplGuid { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SuppressionMagasinEventData | |
| { | |
| Guid MagGuid { get; set; } | |
| string MagCode { get; set; } | |
| string MagLibelle { get; set; } | |
| Guid? PtnGuid { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ModificationMagasinEventData | |
| { | |
| Guid MagGuid { get; set; } | |
| string MagCode { get; set; } | |
| string MagLibelle { get; set; } | |
| Guid? PtnGuid { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CreationMagasinEventData | |
| { | |
| Guid MagGuid { get; set; } | |
| string MagCode { get; set; } | |
| string MagLibelle { get; set; } | |
| Guid? PtnGuid { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PublicationAnnonceEventData | |
| { | |
| Guid AnnonceGuid { get; set; } | |
| DateTimeOffset DateDebut { get; set; } | |
| } |