AppActs.API.Model.Device.DeviceUpgradeSummary.DeviceUpgradeSummary C# (CSharp) Method

DeviceUpgradeSummary() public method

public DeviceUpgradeSummary ( string version, System.DateTime date, System.Guid applicationId, PlatformType platformType ) : System
version string
date System.DateTime
applicationId System.Guid
platformType PlatformType
return System
        public DeviceUpgradeSummary(string version, DateTime date, Guid applicationId, PlatformType platformType)
        {
            this.Version = version;
            this.Date = date;
            this.ApplicationId = applicationId;
            this.PlatformType = platformType;
            this.Count += 1;
        }
DeviceUpgradeSummary