public async Task <ActionResult <SegmentResponse> > PutSegment(int id, [FromBody] SegmentRequest model)
        {
            var rs = await _SegmentService.PutSegment(id, model);

            return(Ok(rs));
        }